home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / localize / french / locali~1.rc < prev    next >
Text File  |  1995-11-22  |  3KB  |  97 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Localize.Rc
  3. /////////////////////////////////////////////////////////////////////////////
  4. //
  5. // contains the resources for our DLL, including the TypeLib, error strings,
  6. // and versioning information.
  7. //
  8. // marcwan, 11.95
  9. //
  10. #include "Resource.H"
  11. #include "Windows.H"
  12.  
  13. #define IDC_STATIC -1
  14.  
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  18. /////////////////////////////////////////////////////////////////////////////
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Our Localized Type Library
  23. //
  24. 1 TYPELIB LocalizeSat.TLB
  25.  
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. //
  29. // String tables with Exception Information, etc.
  30. //
  31. STRINGTABLE DISCARDABLE
  32. BEGIN
  33.     IDS_PROPERTIES,                     "PropriΘtΘs pour Localize"
  34.     IDS_LOCALIZE_GENERALPAGETITLE,        "PropriΘtΘs pour Localize"
  35.     IDS_LOCALIZE_GENERALDOCSTRING,      "Les PropriΘtΘs pour le controle Localize"
  36. END
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. //
  40. // Property Page Dialog
  41. //
  42.  
  43. IDD_PROPPAGE_LOCALIZEGENERAL DIALOG DISCARDABLE  0, 0, 195, 127
  44. STYLE WS_CHILD | 0x4
  45. FONT 8, "MS Sans Serif"
  46. BEGIN
  47. END
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. // Version Information
  51. /////////////////////////////////////////////////////////////////////////////
  52. //
  53. #include "dwinvers.h"
  54. #include <winver.h>
  55.  
  56. VS_VERSION_INFO VERSIONINFO
  57.  
  58. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  59. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  60.  
  61.  
  62. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  63. #ifdef DEBUG
  64. FILEFLAGS    VS_FF_DEBUG
  65. #else
  66. FILEFLAGS    0L
  67. #endif
  68.  
  69. FILEOS        VOS_NT_WINDOWS32
  70.  
  71. FILETYPE    VFT_DLL
  72. FILESUBTYPE    0
  73. {
  74.     BLOCK "StringFileInfo"
  75.     {
  76.         BLOCK "040904B0" // Language and character set identifiers.
  77.         {
  78.             VALUE "CompanyName",     "My Company Name\0"
  79.             VALUE "FileDescription", "Localize French Satellite"
  80.             VALUE "FileVersion",     vszVersNumAll
  81.             VALUE "InternalName",    "LocalizeFr.Dll\0"
  82.             VALUE "LegalCopyright",  vszCopyright
  83.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  84.             VALUE "ProductName",     "Localize Object Library\0"
  85.             VALUE "ProductVersion",  vszVersNumAll
  86.             VALUE "Comments",        vszMakeDate
  87.         }
  88.     }
  89.     BLOCK "VarFileInfo"
  90.     {
  91.         VALUE "Translation" ,0x409, 0x4b0
  92.     }
  93. }
  94.  
  95.  
  96.  
  97.